home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Telecommunications & Multimedia Encyclopedia
/
Jones Telecommunications and Multimedia Encyclopedia (Jones)(1996).ISO
/
mac
/
ENCYCLOP
/
EXIT.DIR
/
00003_Script_3
< prev
next >
Wrap
Text File
|
1996-01-10
|
757b
|
38 lines
on exitFrame
global gButtonClicked, gDisableThreestate,gGotocredits,gModal
moveToFront window "ExitMenu"
set done = 0
repeat while NOT ( done )
if ( the mouseDown ) then
-- do nothing
end if
if ( rollover (2) ) then
ButtonHandler 2, 11
if gButtonClicked = 1 then
--quit
set gGotocredits = 1
set gModal = 2
set gDisableThreestate = 0
set done = 1
end if
end if
if ( rollover (3) ) then
ButtonHandler 3, 14
if gButtonClicked = 1 then
set gDisableThreestate = 0
set done = 1
end if
end if
end repeat
set gDisableThreestate = 0
stopMovie
go to "End"
end